crypto/tls.halfConn.cipher (field)

14 uses

	crypto/tls (current package)
		conn.go#L174: 	cipher  any    // cipher algorithm
		conn.go#L219: 	hc.cipher = hc.nextCipher
		conn.go#L233: 	hc.cipher = suite.aead(key, iv)
		conn.go#L258: 	if hc.cipher == nil {
		conn.go#L262: 	switch c := hc.cipher.(type) {
		conn.go#L356: 	if hc.cipher != nil {
		conn.go#L357: 		switch c := hc.cipher.(type) {
		conn.go#L481: 	if hc.cipher == nil {
		conn.go#L488: 		if _, isCBC := hc.cipher.(cbcMode); !isCBC && explicitNonceLen < 16 {
		conn.go#L507: 	switch c := hc.cipher.(type) {
		conn.go#L696: 	if c.in.cipher == nil && typ == recordTypeApplicationData {
		conn.go#L913: 	if c.out.cipher != nil {
		conn.go#L914: 		switch ciph := c.out.cipher.(type) {
		conn.go#L1246: 		if _, ok := c.out.cipher.(cipher.BlockMode); ok {